/* CSS Stylesheet for Victory High School Website */
:root{
  --bg:#0f1724;            /* deep navy */
  --card:#0b1220;
  --muted:#9aa6bf;
  --primary:#4f46e5;       /* indigo-600 */
  --accent:#06b6d4;        /* teal-400 */
  --success:#10b981;
  --danger:#ef4444;
  --text: #ffff;
  --text2: rgb(17, 0, 249);
  --shadow: #ffd95e;
  --glass: rgba(255,255,255,0.04);
  --radius:12px;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-strong: 700;
  --max-w: 1100px;
  --ease: cubic-bezier(.2,.9,.3,1);
  --shadow: 0 8px 30px rgba(2,6,23,0.6);
  --mono: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset & base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--mono);
  background: linear-gradient(180deg, #071020 0%, #051021 50%), var(--bg);
  color:#e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  padding: 0 16px;
}

/* Layout container */
.container{
  max-width:var(--max-w);
  margin:0 auto;
  width:100%;
  padding: 36px 18px;
}

/* Header / Nav */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.site-brand img{width:48px;height:48px;border-radius:8px;object-fit:cover}
.site-title{
  font-size:1.05rem;
  font-weight:var(--fw-strong);
  letter-spacing:0.2px;
}
.site-tag{font-size:.8rem;color:var(--muted);margin-top:2px}

/* Nav links */
.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:10px;
  transition:all .18s var(--ease);
  font-weight:var(--fw-medium);
}
.nav a:hover{background:var(--glass); color:#fff; transform:translateY(-2px)}

/* Hero */
.hero{
  display:flex;
  gap:28px;
  align-items:center;
  margin:28px 0 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding:28px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-left{flex:1}
.hero-right{width:420px;max-width:40%}

/* Hero text */
.h-title{
  font-size:1.9rem;
  margin:0 0 12px;
  letter-spacing:-0.5px;
  line-height:1.05;
}
.h-lead{color:var(--muted);margin:0 0 18px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  border:0;
  cursor:pointer;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
  text-decoration:none;
}
.btn-primary{
  background: linear-gradient(90deg,var(--primary), #7c5cff);
  color:white;
  box-shadow: 0 8px 24px rgba(79,70,229,0.18);
}
.btn-primary:hover{transform:translateY(-3px)}
.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--muted);
}
.btn-ghost{background:transparent;color:var(--accent);font-weight:700}

/* Cards & utilities */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:12px;
  padding:18px;
  box-shadow: 0 6px 20px rgba(2,6,23,0.55);
  border: 1px solid rgba(255,255,255,0.03);
}


/* Alerts */
.alert{ 
  padding:10px 12px;border-radius:10px;font-weight:600;
}
.alert-info{background: rgba(6,182,212,0.06);color:var(--accent);border:1px solid rgba(6,182,212,0.08)}
.alert-success{background: rgba(16,185,129,0.06);color:var(--success)}
.alert-danger{background: rgba(239,68,68,0.06);color:var(--danger)}

/* Grid utilities */
.grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero{flex-direction:column}
  .hero-right{max-width:100%;width:100%}
}
@media (max-width:640px){
  .grid{grid-template-columns:1fr}
  .nav{display:none}
  .container{padding:18px 12px}
  .h-title{font-size:1.4rem}
}

/* Footer */
.site-footer{
  margin:36px 0 18px;
  color:var(--muted);
  font-size:.9rem;
  text-align:center;
}

/* Table (for library / dashboard lists) */
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:10px;
}
.table thead tr{background:rgba(255,255,255,0.02)}
.table th, .table td{
  padding:12px 14px;
  text-align:left;
  font-size:.95rem;
  color:#dfe9ff;
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.table tbody tr:hover{background: rgba(255,255,255,0.01)}

/* Dashboard sidebar/topbar */
.app-shell{display:flex;gap:20px}
.sidebar{
  width:260px;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  padding:16px;border-radius:12px;
  height:calc(100vh - 120px);
  position:sticky;top:60px;align-self:flex-start;
}
.sidebar a{display:flex;gap:12px;align-items:center;padding:10px;border-radius:8px;color:var(--muted);text-decoration:none}
.sidebar a.active{background:rgba(79,70,229,0.12);color:#fff;font-weight:700}

/* Small utilities */
.kv{display:flex;justify-content:space-between;align-items:center}
.badge{background:rgba(255,255,255,0.04);padding:6px 10px;border-radius:999px;font-weight:700;color:var(--muted)}
.small{font-size:.85rem;color:var(--muted)}

/* Tiny animations */
.fade-in{animation:fadeIn .44s var(--ease) both}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

/* Helpers for forms on login/register pages */
.auth-wrap{max-width:460px;margin:0 auto}
.auth-card{padding:26px;border-radius:14px}
.auth-hr{height:1px;background:rgba(255,255,255,0.03);margin:18px 0;border-radius:2px}

/* Accessibility */
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

/* Small tweaks for images */
.responsive-img{max-width:100%;height:auto;border-radius:8px;display:block}

/* Footer sticky spacer */
.footer-space{height:60px}

/* End of stylesheet */ 

/* ...existing code... */

/* Added styles for index hero and header adjustments */
header{display:block}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.motto{color:var(--muted);margin:0 0 12px}
.hero-ctas{margin-top:12px;display:flex;gap:12px}
.btn.primary{background: linear-gradient(90deg,var(--primary), #7c5cff);color:white;box-shadow: 0 8px 24px rgba(79,70,229,0.18);}


